home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00007_text box scripts.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  6.8 KB  |  199 lines

  1. on SetQuestionTextBox _hilite
  2.   global givTextRegColor, givTextHiliteColor, givAthleteNameList, givGuestStarList, givState, givQUESTIONTEXTBACKSPRITE, givTextHiliteBlue
  3.   MessagePut("setting question text box...")
  4.   set the foreColor of field "QuestionTextBox" to givTextRegColor
  5.   set P to EMPTY
  6.   if the activeMonitor of givState = 1 then
  7.     if the selectType of givState = #topic then
  8.       set P to "T" & the topicNum of givState
  9.     else
  10.       set P to "I" & the lastAthlete of givState
  11.     end if
  12.   else
  13.     if the activeMonitor of givState = 2 then
  14.       set P to "IN"
  15.     else
  16.       if the activeMonitor of givState = 3 then
  17.         if (the mode of givState = #play) and (count(the editList of givState) > 0) then
  18.           set P to "ED"
  19.         else
  20.           set P to "TR"
  21.         end if
  22.       else
  23.         if the activeMonitor of givState = 4 then
  24.           set P to "AD"
  25.         else
  26.           if the activeMonitor of givState = 5 then
  27.             set P to "EN"
  28.           else
  29.             if the activeMonitor of givState = 6 then
  30.               set P to "AV" & the lastAthlete of givState
  31.             end if
  32.           end if
  33.         end if
  34.       end if
  35.     end if
  36.   end if
  37.   if the activeMonitor of givState = 6 then
  38.     set the castNum of sprite givQUESTIONTEXTBACKSPRITE to the number of cast "AV.pct"
  39.   else
  40.     set the castNum of sprite givQUESTIONTEXTBACKSPRITE to the number of cast (P & ".pct")
  41.   end if
  42.   if P = "ED" then
  43.     set the text of field "QuestionTextBox" to the text of cast "EditListBuild"
  44.     set the foreColor of field "QuestionTextBox" to givTextHiliteBlue
  45.   else
  46.     set the text of field "QuestionTextBox" to the text of cast P
  47.     if not voidp(_hilite) and (_hilite = 1) then
  48.       SetQuestionTextBoxHilite()
  49.     end if
  50.   end if
  51.   updateStage()
  52. end
  53.  
  54. on SetQuestionTextBoxHilite num
  55.   global givTextRegColor, givTextHiliteColor, givState
  56.   if (the mode of givState = #play) and (the activeMonitor of givState = 3) then
  57.     nothing()
  58.     exit
  59.   end if
  60.   if (count(the questionSelectList of givState) > 0) and voidp(num) then
  61.     DisplayFromList()
  62.     exit
  63.   end if
  64.   set the foreColor of field "QuestionTextBox" to givTextRegColor
  65.   if voidp(num) then
  66.     set the foreColor of line GetMonitorPtr(givState, the activeMonitor of givState) of field "QuestionTextBox" to givTextHiliteColor
  67.   else
  68.     MessagePut("set to " & num)
  69.     set the foreColor of line num of field "QuestionTextBox" to givTextHiliteColor
  70.   end if
  71. end
  72.  
  73. on SetQuestionClipFromTextBox lineNum
  74.   global givState
  75.   MessagePut("setting clip to match text box with line num:" && lineNum)
  76.   set lis to GetMonitorListByNumber(the activeMonitor of givState)
  77.   set newClip to getAt(lis, lineNum)
  78.   MessagePut("NewClip:" && newClip)
  79.   if count(the questionSelectList of givState) < 1 then
  80.     SetMonitorPtr(givState, the activeMonitor of givState, lineNum)
  81.   else
  82.     SetMonitorPtr(givState, the activeMonitor of givState, getAt(the questionSelectList of givState, 1))
  83.   end if
  84.   PlaySoundWait("CLIK2.AIF")
  85.   DisplayMonitor(the activeMonitor of givState)
  86.   if the activeMonitor of givState = 1 then
  87.     SetAthleteFromMonitor(givState)
  88.   end if
  89. end
  90.  
  91. on AddToSelectList mLine
  92.   global givState
  93.   if mLine < the number of lines in field "QuestionTextBox" then
  94.     MessagePut("entering AddToSelectList with list = " & the questionSelectList of givState & " sent line " & mLine)
  95.     set found to 0
  96.     repeat with I = 1 to count(the questionSelectList of givState)
  97.       if mLine = getAt(the questionSelectList of givState, I) then
  98.         set found to I
  99.       end if
  100.     end repeat
  101.     if found = 0 then
  102.       append(the questionSelectList of givState, mLine)
  103.     else
  104.       deleteAt(the questionSelectList of givState, found)
  105.     end if
  106.     DisplayFromList()
  107.   end if
  108. end
  109.  
  110. on DisplayFromList
  111.   global givState, givTextRegColor, givTextHiliteColor
  112.   MessagePut("display from question select list...")
  113.   set the foreColor of cast "QuestionTextBox" to givTextRegColor
  114.   repeat with I = 1 to the number of lines in field "QuestionTextBox" - 1
  115.     set j to getPos(the questionSelectList of givState, I)
  116.     if j = 0 then
  117.       if char 2 of line I of field "QuestionTextBox" = ":" then
  118.         put "--" into char 1 to 2 of line I of field "QuestionTextBox"
  119.       else
  120.         if char 3 of line I of field "QuestionTextBox" = ":" then
  121.           put "--" into char 1 to 3 of line I of field "QuestionTextBox"
  122.         else
  123.           nothing()
  124.         end if
  125.       end if
  126.       next repeat
  127.     end if
  128.     if j < 10 then
  129.       if char 3 of line I of field "QuestionTextBox" = ":" then
  130.         delete char 1 of line I of field "QuestionTextBox"
  131.         put string(j) & ":" into char 1 to 2 of line I of field "QuestionTextBox"
  132.       else
  133.         put string(j) & ":" into char 1 to 2 of line I of field "QuestionTextBox"
  134.       end if
  135.     else
  136.       if char 3 of line I of field "QuestionTextBox" = ":" then
  137.         put string(j) & ":" into char 1 to 3 of line I of field "QuestionTextBox"
  138.       else
  139.         put " " before line I of field "QuestionTextBox"
  140.         put string(j) & ":" into char 1 to 3 of line I of field "QuestionTextBox"
  141.       end if
  142.     end if
  143.     set the foreColor of line I of field "QuestionTextBox" to givTextHiliteColor
  144.   end repeat
  145.   updateStage()
  146. end
  147.  
  148. on QuestionListSelectAll
  149.   global givState
  150.   if (the activeMonitor of givState = 3) and (the mode of givState = #play) then
  151.     nothing()
  152.     exit
  153.   end if
  154.   set the questionSelectList of givState to []
  155.   repeat with I = 1 to count(GetMonitorListByNumber(the activeMonitor of givState))
  156.     append(the questionSelectList of givState, I)
  157.   end repeat
  158.   DisplayFromList()
  159. end
  160.  
  161. on QuestionListSelectNone
  162.   global givState
  163.   if (the activeMonitor of givState = 3) and (the mode of givState = #play) then
  164.     nothing()
  165.     exit
  166.   end if
  167.   set the questionSelectList of givState to []
  168.   DisplayFromList()
  169. end
  170.  
  171. on BuildEditListText
  172.   global givAthleteNameList, givGuestStarList, givState
  173.   set the text of field "EditListBuild" to " "
  174.   if the userTitle of givState = EMPTY then
  175.     set the text of field "EditListBuild" to "Awesome Athletes" & RETURN
  176.   else
  177.     set the text of field "EditListBuild" to the userTitle of givState & RETURN
  178.   end if
  179.   set givGuestStarList to []
  180.   repeat with I = 1 to count(the editList of givState)
  181.     set clipID to getAt(the editList of givState, I)
  182.     if (char 1 to 2 of clipID = "QA") or (char 1 to 2 of clipID = "AV") then
  183.       set athID to char 3 to 5 of clipID
  184.       if getPos(givGuestStarList, item 1 of getaProp(givAthleteNameList, athID)) = 0 then
  185.         append(givGuestStarList, item 1 of getaProp(givAthleteNameList, athID))
  186.       end if
  187.     end if
  188.   end repeat
  189.   MessagePut("Guest Stars found:" && givGuestStarList)
  190.   if count(givGuestStarList) = 0 then
  191.     nothing()
  192.   else
  193.     put "         Guest Starring" & RETURN after field "EditListBuild"
  194.     repeat with I = 1 to count(givGuestStarList)
  195.       put string(getAt(givGuestStarList, I) & RETURN) after field "EditListBuild"
  196.     end repeat
  197.   end if
  198. end
  199.